lib: Fix Since versions for 2020.1
authorDan Nicholson <nicholson@endlessm.com>
Thu, 20 Feb 2020 22:44:51 +0000 (15:44 -0700)
committerDan Nicholson <nicholson@endlessm.com>
Thu, 20 Feb 2020 22:47:41 +0000 (15:47 -0700)
These had been added assuming 2019.7 would be the next version, but now
it's 2020 and there's been a release. In the case of
`OstreeCommitSizesEntry`, I'd forgotten to move it forward from 2019.5
to 2019.7 in the time between when I started working on the feature and
it landed.

src/libostree/ostree-core.c
src/libostree/ostree-core.h
src/libostree/ostree-gpg-verify-result.h
src/libostree/ostree-sysroot.c

index 4667dd8f327d0f7ec5cb909ba0a350e36b703f5d..48815bd342b411a0fc321ddb83d72dc49ef100c4 100644 (file)
@@ -2445,7 +2445,7 @@ G_DEFINE_BOXED_TYPE (OstreeCommitSizesEntry, ostree_commit_sizes_entry,
  * commit's "ostree.sizes" metadata.
  *
  * Returns: (transfer full) (nullable): a new #OstreeCommitSizesEntry
- * Since: 2019.7
+ * Since: 2020.1
  */
 OstreeCommitSizesEntry *
 ostree_commit_sizes_entry_new (const gchar      *checksum,
@@ -2471,7 +2471,7 @@ ostree_commit_sizes_entry_new (const gchar      *checksum,
  * Create a copy of the given @entry.
  *
  * Returns: (transfer full) (nullable): a new copy of @entry
- * Since: 2019.7
+ * Since: 2020.1
  */
 OstreeCommitSizesEntry *
 ostree_commit_sizes_entry_copy (const OstreeCommitSizesEntry *entry)
@@ -2490,7 +2490,7 @@ ostree_commit_sizes_entry_copy (const OstreeCommitSizesEntry *entry)
  *
  * Free given @entry.
  *
- * Since: 2019.7
+ * Since: 2020.1
  */
 void
 ostree_commit_sizes_entry_free (OstreeCommitSizesEntry *entry)
@@ -2572,7 +2572,7 @@ read_sizes_entry (GVariant                *entry,
  * the "ostree.sizes" metadata, a %G_IO_ERROR_NOT_FOUND error will be
  * returned.
  *
- * Since: 2019.7
+ * Since: 2020.1
  */
 gboolean
 ostree_commit_get_object_sizes (GVariant   *commit_variant,
index 106011235df42adf8bb5f95a861e166f51bf6800..540f3232c0a46359c97cbb8e982f59547c1e4dba 100644 (file)
@@ -531,7 +531,7 @@ gchar *  ostree_commit_get_content_checksum  (GVariant  *commit_variant);
  * Structure representing an entry in the "ostree.sizes" commit metadata. Each
  * entry corresponds to an object in the associated commit.
  *
- * Since: 2019.5
+ * Since: 2020.1
  */
 typedef struct {
   gchar *checksum;
index f71ab981a2143676943ec60ab3f442442b16e200..6f51ce8ac1ca06fd962c7ad445f84068158a4f4b 100644 (file)
@@ -159,11 +159,11 @@ gboolean ostree_gpg_verify_result_require_valid_signature (OstreeGpgVerifyResult
  * @OSTREE_GPG_ERROR_NO_SIGNATURE: A signature was expected, but not found.
  * @OSTREE_GPG_ERROR_INVALID_SIGNATURE: A signature was malformed.
  * @OSTREE_GPG_ERROR_MISSING_KEY: A signature was found, but was created with a key not in the configured keyrings.
- * @OSTREE_GPG_ERROR_EXPIRED_SIGNATURE: A signature was expired. Since: 2019.7.
+ * @OSTREE_GPG_ERROR_EXPIRED_SIGNATURE: A signature was expired. Since: 2020.1.
  * @OSTREE_GPG_ERROR_EXPIRED_KEY: A signature was found, but the key used to
- *   sign it has expired. Since: 2019.7.
+ *   sign it has expired. Since: 2020.1.
  * @OSTREE_GPG_ERROR_REVOKED_KEY: A signature was found, but the key used to
- *   sign it has been revoked. Since: 2019.7.
+ *   sign it has been revoked. Since: 2020.1.
  *
  * Errors returned by signature creation and verification operations in OSTree.
  * These may be returned by any API which creates or verifies signatures.
index 23a069752d5de2af724944828d122499ccbc4ab6..55a610148876157bfeee29e0e9cb69e0a73bafa0 100644 (file)
@@ -242,7 +242,7 @@ ostree_sysroot_new_default (void)
  * If you invoke this function, it must be before ostree_sysroot_load(); it may
  * be invoked before or after ostree_sysroot_initialize().
  *
- * Since: 2019.7
+ * Since: 2020.1
  */
 void
 ostree_sysroot_set_mount_namespace_in_use (OstreeSysroot  *self)
@@ -341,7 +341,7 @@ ostree_sysroot_get_fd (OstreeSysroot *self)
  * Can only be invoked after `ostree_sysroot_initialize()`.
  * 
  * Returns: %TRUE iff the sysroot points to a booted deployment
- * Since: 2019.7
+ * Since: 2020.1
  */
 gboolean
 ostree_sysroot_is_booted (OstreeSysroot *self)
@@ -890,7 +890,7 @@ ensure_repo (OstreeSysroot  *self,
  * It is not necessary to call this function if ostree_sysroot_load() is
  * invoked.
  *
- * Since: 2019.7
+ * Since: 2020.1
  */
 gboolean
 ostree_sysroot_initialize (OstreeSysroot  *self,